home *** CD-ROM | disk | FTP | other *** search
/ DC Comics 2.0 / DC Collected Edi.iso / pc / collect / collectMenu.js next >
Text File  |  2002-11-21  |  1KB  |  22 lines

  1. function menuHandler(){
  2. var URL = document.collectMenu.category.options[document.collectMenu.category.selectedIndex].value;
  3. window.location.href = URL;
  4. }
  5.  
  6. document.write('<form name="collectMenu">');
  7. document.write('<select name="category" size=1>');
  8. document.write('<option value="../popular/popularlist.html">MOST POPULAR');
  9. document.write('<option value="../dcuniverse/dcuniverselist.html">DC UNIVERSE');
  10. document.write('<option value="../batman/batmanlist.html">BATMAN');
  11. document.write('<option value="../superman/supermanlist.html">SUPERMAN');
  12. document.write('<option value="../archive/archivelist.html">ARCHIVE EDITIONS');
  13. document.write('<option value="../mad/madlist.html">MAD');
  14. document.write('<option value="../wildstorm/wildstormlist.html">WILDSTORM');
  15. document.write('<option value="../vertigo/vertigolist.html">VERTIGO');
  16. document.write('<option value="../eisner/eisnerlist.html">WILL EISNER LIBRARY');
  17. document.write('<option value="../other/otherlist.html">OTHER');
  18. document.write('<option value="">----------');
  19. document.write('<option value="http://www.dccomics.com/directcurrents/collect/main.html">MAIN MENU');
  20. document.write('</select>');
  21. document.write('<input type=button value="GO!" onClick="javascript:menuHandler()">');
  22. document.write('</form>');